enregistrement
Les commerces par commune ou arrondissement (base permanente des équipements)
Modèle de données
Cliquez pour déplier Cliquez pour replier
Schéma JSON
L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.
{
- "title":"les-commerces-par-commune-ou-arrondissement-base-permanente-des-equipements",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/les-commerces-par-commune-ou-arrondissement-base-permanente-des-equipements"
}
] - "definitions":{
- "les-commerces-par-commune-ou-arrondissement-base-permanente-des-equipements":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/les-commerces-par-commune-ou-arrondissement-base-permanente-des-equipements_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "les-commerces-par-commune-ou-arrondissement-base-permanente-des-equipements_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "departement":,{
- "type":"integer",
- "title":"Département",
- "description":""
} - "departement_commune":,{
- "type":"integer",
- "title":"Département commune",
- "description":""
} - "libelle_de_commune":,{
- "type":"string",
- "title":"Libellé de commune",
- "description":""
} - "arrondissement":,{
- "type":"integer",
- "title":"Arrondissement",
- "description":""
} - "canton_ville":,{
- "type":"integer",
- "title":"Canton ville",
- "description":""
} - "zone_d_emploi":,{
- "type":"integer",
- "title":"Zone d'emploi",
- "description":""
} - "unite_urbaine":,{
- "type":"string",
- "title":"Unité urbaine",
- "description":""
} - "population_2010":,{
- "type":"integer",
- "title":"Population 2010",
- "description":""
} - "hypermarche":,{
- "type":"integer",
- "title":"Hypermarché",
- "description":""
} - "supermarche":,{
- "type":"integer",
- "title":"Supermarché",
- "description":""
} - "grande_surface_de_bricolage":,{
- "type":"integer",
- "title":"Grande surface de bricolage",
- "description":""
} - "superette":,{
- "type":"integer",
- "title":"Supérette",
- "description":""
} - "epicerie":,{
- "type":"integer",
- "title":"Epicerie",
- "description":""
} - "boulangerie":,{
- "type":"integer",
- "title":"Boulangerie",
- "description":""
} - "boucherie_charcuterie":,{
- "type":"integer",
- "title":"Boucherie charcuterie",
- "description":""
} - "produits_surgeles":,{
- "type":"integer",
- "title":"Produits surgelés",
- "description":""
} - "poissonnerie":,{
- "type":"integer",
- "title":"Poissonnerie",
- "description":""
} - "librairie_papeterie_journaux":,{
- "type":"integer",
- "title":"Librairie papeterie journaux",
- "description":""
} - "magasin_de_vetements":,{
- "type":"integer",
- "title":"Magasin de vêtements",
- "description":""
} - "magasin_d_equipements_du_foyer":,{
- "type":"integer",
- "title":"Magasin d'équipements du foyer",
- "description":""
} - "magasin_de_chaussures":,{
- "type":"integer",
- "title":"Magasin de chaussures",
- "description":""
} - "magasin_d_electromenager_et_de_mat_audio_video":,{
- "type":"integer",
- "title":"Magasin d'électroménager et de mat. audio-vidéo",
- "description":""
} - "magasin_de_meubles":,{
- "type":"integer",
- "title":"Magasin de meubles",
- "description":""
} - "magasin_d_articles_de_sports_et_de_loisirs":,{
- "type":"integer",
- "title":"Magasin d'articles de sports et de loisirs",
- "description":""
} - "magasin_de_revetements_murs_et_sols":,{
- "type":"integer",
- "title":"Magasin de revêtements murs et sols",
- "description":""
} - "droguerie_quincaillerie_bricolage":,{
- "type":"integer",
- "title":"Droguerie quincaillerie bricolage",
- "description":""
} - "parfumerie":,{
- "type":"integer",
- "title":"Parfumerie",
- "description":""
} - "horlogerie_bijouterie":,{
- "type":"integer",
- "title":"Horlogerie Bijouterie",
- "description":""
} - "fleuriste":,{
- "type":"integer",
- "title":"Fleuriste",
- "description":""
} - "magasin_d_optique":,{
- "type":"integer",
- "title":"Magasin d'optique",
- "description":""
} - "station_service":,{
- "type":"integer",
- "title":"Station service",
- "description":""
} - "geo_point_2d":,{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"geo_point_2d",
- "description":""
} - "geo_shape":{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"geo_shape",
- "description":""
}
} - "departement":
}
} - "fields":
} - "properties":
} - "les-commerces-par-commune-ou-arrondissement-base-permanente-des-equipements":
}